home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / RAND / LINUX040.LZH / FILESYS2 / etc / rc < prev    next >
Encoding:
Text File  |  1996-09-11  |  359 b   |  20 lines

  1. #! /bin/sh
  2.  
  3. # Set the path.
  4. PATH=/sbin:/bin; export PATH
  5.  
  6. # Remount the root fileystem read-write.
  7. echo "Remounting root file system read-write"
  8. mount -n -o remount,rw /
  9.  
  10. # start the update(8) sync demon
  11. echo "Starting update"
  12. /sbin/update &
  13.  
  14. # mount file systems in fstab (and create an entry for /)
  15. echo "Mounting filesystems:"
  16. mount -av
  17. mount -f /
  18.  
  19. exit 0
  20.